body {
    background: radial-gradient(circle at top right, rgba(0,119,255,0.10), transparent 40%), radial-gradient(circle at bottom left, rgba(0,194,255,0.08), transparent 45%), #f6f9fc;
    font-family: 'Segoe UI', sans-serif;
    color: #1a2e4a;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 30px;
}

.page-header {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #082f63;
    margin: 60px 0 50px;
    letter-spacing: 0.5px;
    position: relative;
}

    .page-header::after {
        content: "";
        width: 90px;
        height: 4px;
        background: linear-gradient(90deg, #0077ff, #00c2ff);
        display: block;
        margin: 14px auto 0;
        border-radius: 50px;
    }

.productoTable {
    width: 100%;
}

.productoRow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.productoCell {
    flex: 1;
    min-width: 320px;
}

.productoCard {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,119,255,0.12);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all .35s ease;
    position: relative;
}

    .productoCard:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.10), 0 8px 25px rgba(0,119,255,0.15);
    }

    .productoCard::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.25), transparent );
        transition: 0.8s;
    }

    .productoCard:hover::before {
        left: 120%;
    }

.CategoriaTitulo {
    background: linear-gradient(135deg, #082f63, #0d47a1, #0077ff);
    padding: 18px;
    text-align: center;
}

    .CategoriaTitulo a {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: 0.3s ease;
    }

        .CategoriaTitulo a:hover {
            color: #cfe9ff;
        }

.CategoriaDescripcion {
    padding: 24px;
}

.ImagenModelo {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
}

    .ImagenModelo img {
        width: 100%;
        transition: transform .5s ease;
    }

.productoCard:hover .ImagenModelo img {
    transform: scale(1.05);
}

.ImagenDescripcion {
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 18px;
}

.producto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #0077ff, #00c2ff);
    box-shadow: 0 8px 20px rgba(0,119,255,0.25);
    transition: all .3s ease;
}

    .producto-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(0,119,255,0.35);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.productoCard {
    animation: fadeUp 0.8s ease;
}

@media (max-width: 768px) {

    .productoRow {
        flex-direction: column;
    }

    .page-header {
        font-size: 2.2rem;
    }

    .productoCell {
        min-width: 100%;
    }

    .CategoriaTitulo a {
        font-size: 18px;
    }
}
